projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
153a17b
)
(read_minibuf): Use assignment instead of initialization.
author
Karl Heuer
<kwzh@gnu.org>
Wed, 23 Mar 1994 22:55:24 +0000
(22:55 +0000)
committer
Karl Heuer
<kwzh@gnu.org>
Wed, 23 Mar 1994 22:55:24 +0000
(22:55 +0000)
src/minibuf.c
patch
|
blob
|
history
diff --git
a/src/minibuf.c
b/src/minibuf.c
index 03acbc4da51558f070ea3c3770d15c75a47cd91e..d7da13d57b7aef502ed410e5f63752bce619471a 100644
(file)
--- a/
src/minibuf.c
+++ b/
src/minibuf.c
@@
-204,8
+204,9
@@
read_minibuf (map, initial, prompt, backup_n, expflag, histvar, histpos)
CONSP (buf_list);
buf_list = XCONS (buf_list)->cdr)
{
- Lisp_Object other_buf
= XCONS (XCONS (buf_list)->car)->cdr
;
+ Lisp_Object other_buf;
+ other_buf = XCONS (XCONS (buf_list)->car)->cdr;
if (XTYPE (XBUFFER (other_buf)->directory) == Lisp_String)
{
current_buffer->directory = XBUFFER (other_buf)->directory;